Fix error causing test name completion failure
authorErcan Erden <ercerden@gmail.com>
Sat, 13 Jun 2015 19:51:49 +0000 (15:51 -0400)
committerErcan Erden <ercerden@gmail.com>
Sat, 13 Jun 2015 21:11:44 +0000 (17:11 -0400)
This was caused by a syntax error.

src/etc/_cargo

index 7181c3d1579516f8ada97ef035436356211faff5..88ad9e54b8b4a9b3f9c88b37f556c71137382021 100644 (file)
@@ -307,7 +307,7 @@ echo $manifest
 _test_names(){
 local -a filelist;
 local manifest=$(_locate_manifest)
-if ![[ $manifest ]]; then
+if ! [[ $manifest ]]; then
     return 0
 fi